home *** CD-ROM | disk | FTP | other *** search
/ Programming Windows 95 with MFC / Programming Windows 95 with MFC (Microsoft Programming Series)(097-0001465)(1996).iso / CODE / Chap07 / Clock / Clock.rc < prev    next >
Encoding:
Text File  |  1996-04-05  |  855 b   |  27 lines

  1. //***********************************************************************
  2. //
  3. //  Clock.rc
  4. //
  5. //***********************************************************************
  6.  
  7. #include <afxres.h>
  8. #include "Resource.h"
  9.  
  10. IDI_APPICON ICON Clock.ico
  11.  
  12. IDD_ABOUTDLG DIALOG 0, 0, 256, 98
  13. STYLE DS_MODALFRAME | DS_CENTER | WS_POPUP | WS_VISIBLE | WS_CAPTION |
  14.     WS_SYSMENU
  15. CAPTION "About Clock"
  16. FONT 8, "MS Sans Serif"
  17. BEGIN
  18.     LTEXT           "", IDC_ICONRECT, 14, 12, 80, 74
  19.     LTEXT           "Clock Version 1.0", -1, 108, 12, 136, 8
  20.     LTEXT           "From the book", -1, 108, 32, 136, 8
  21.     LTEXT           """Programming Windows 95 with MFC""", -1,
  22.                     108, 42, 136, 8
  23.     LTEXT           "Copyright ⌐ 1996 by Jeff Prosise", -1,
  24.                     108, 52, 136, 8
  25.     DEFPUSHBUTTON   "OK", IDOK, 108, 72, 50, 14
  26. END
  27.